ef78e47fcb2a6e8a8bf7f8f375fcbd0e85634dba,src/test/java/com/xebialabs/overthere/itest/ItestsBase3Copy.java,ItestsBase3Copy,shouldCopyLocalDirectoryToNonExistentRemoteDirectory,#,153

Before Change


    @Test
    public void shouldCopyLocalDirectoryToNonExistentRemoteDirectory() {
        OverthereFile srcDir = getLocalSourceDirectory();
        OverthereFile dstDir = getRemoteDestinationDirectory();

        populateSourceDirectory(srcDir);

        srcDir.copyTo(dstDir);

        assertSourceDirectoryWasCopiedToNonExistentDestinationDirectory(dstDir);
    }

After Change



    @Test
    public void shouldCopyLocalDirectoryToNonExistentRemoteDirectory() {
        shouldCopyToNonExistentDirectory(getLocalSourceDirectory(), getRemoteDestinationDirectory());
    }

    @Test